www.gusucode.com > wxApp PHP版微信小程序CMS系统 v1.0PHP源码程序 > wxApp PHP版微信小程序CMS系统 v1.0/wxAppCMS_v1.0.0/wxAppCMS_v1.0.0/app/files/admincp/files.preview.php

    <?php
/**
* iCMS - i Content Management System
* Copyright (c) 2007-2017 iCMSdev.com. All rights reserved.
*
* @author icmsdev <master@icmsdev.com>
* @site https://www.icmsdev.com
* @licence https://www.icmsdev.com/LICENSE.html
*/
defined('iPHP') OR exit('What are you doing?');
admincp::head(false);
?>
<div class="iCMS-container">
  <div class="pic">
    <img src="<?php echo $src;?>?<?php echo time();?>" alt="预览">
  </div>
</div>
<script type="text/javascript">
(function(){
  function iimgFix(im, x, y) {
      x = x || 99999
      y = y || 99999
      im.removeAttribute("width");
      im.removeAttribute("height");
      if (im.width / im.height > x / y && im.width > x) {
          im.height = im.height * (x / im.width)
          im.width = x
          im.parentNode.style.height = im.height * (x / im.width) + 'px'
      } else if (im.width / im.height <= x / y && im.height > y) {
          im.width = im.width * (y / im.height)
          im.height = y
          im.parentNode.style.height = y + 'px'
      }
  }
  $(".pic img").each(function(i){iimgFix(this,0,600);});
})($);
</script>
<?php admincp::foot(); ?>